home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / demos / OpenGL / include / GL / glut.h next >
C/C++ Source or Header  |  1996-11-11  |  9KB  |  298 lines

  1. #ifndef __glut_h__
  2. #define __glut_h__
  3.  
  4. /* Copyright (c) Mark J. Kilgard, 1994. */
  5.  
  6. /* This program is freely distributable without licensing fees 
  7.    and is provided without guarantee or warrantee expressed or 
  8.    implied. This program is -not- in the public domain. */
  9.  
  10. #include <GL/gl.h>
  11. #include <GL/glu.h>
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. /*
  18.  * GLUT API revision history:
  19.  *
  20.  * GLUT_API_VERSION is updated to reflect incompatible GLUT
  21.  * API changes (interface changes, semantic changes, deletions,
  22.  * or additions).
  23.  *
  24.  * GLUT_API_VERSION=1  First public release of GLUT.  11/29/94
  25.  *
  26.  * GLUT_API_VERSION=2  Added support for OpenGL/GLX multisampling,
  27.  * extension.  Supports new input devices like tablet, dial and button
  28.  * box, and Spaceball.  Easy to query OpenGL extensions.
  29.  *
  30.  */
  31. #ifndef GLUT_API_VERSION    /* allow this to be overriden */
  32. #define GLUT_API_VERSION        2
  33. #endif
  34.  
  35. /*
  36.  * GLUT implementation revision history:
  37.  * 
  38.  * GLUT_XLIB_IMPLEMENTATION is updated to reflect both GLUT
  39.  * API revisions and implementation revisions (ie, bug fixes).
  40.  *
  41.  * GLUT_XLIB_IMPLEMENTATION=1  mjk's first public release of
  42.  * GLUT Xlib-based implementation.  11/29/94
  43.  *
  44.  * GLUT_XLIB_IMPLEMENTATION=2  mjk's second public release of
  45.  * GLUT Xlib-based implementation providing GLUT version 2 
  46.  * interfaces.
  47.  *
  48.  */
  49. #ifndef GLUT_XLIB_IMPLEMENTATION    /* allow this to be overriden */
  50. #define GLUT_XLIB_IMPLEMENTATION    2
  51. #endif
  52.  
  53. /* display mode bit masks */
  54. #define GLUT_RGB            0
  55. #define GLUT_RGBA            GLUT_RGB
  56. #define GLUT_INDEX            1
  57. #define GLUT_SINGLE            0
  58. #define GLUT_DOUBLE            2
  59. #define GLUT_ACCUM            4
  60. #define GLUT_ALPHA            8
  61. #define GLUT_DEPTH            16
  62. #define GLUT_STENCIL            32
  63. #if (GLUT_API_VERSION >= 2)
  64. #define GLUT_MULTISAMPLE        128
  65. #define GLUT_STEREO            256
  66. #endif
  67.  
  68. /* mouse buttons */
  69. #define GLUT_LEFT_BUTTON        0
  70. #define GLUT_MIDDLE_BUTTON        1
  71. #define GLUT_RIGHT_BUTTON        2
  72.  
  73. /* mouse button callback state */
  74. #define GLUT_DOWN            0
  75. #define GLUT_UP                1
  76.  
  77. #if (GLUT_API_VERSION >= 2)
  78. /* function keys */
  79. #define GLUT_KEY_F1            1
  80. #define GLUT_KEY_F2            2
  81. #define GLUT_KEY_F3            3
  82. #define GLUT_KEY_F4            4
  83. #define GLUT_KEY_F5            5
  84. #define GLUT_KEY_F6            6
  85. #define GLUT_KEY_F7            7
  86. #define GLUT_KEY_F8            8
  87. #define GLUT_KEY_F9            9
  88. #define GLUT_KEY_F10            10
  89. #define GLUT_KEY_F11            11
  90. #define GLUT_KEY_F12            12
  91. /* directional keys */
  92. #define GLUT_KEY_LEFT            100
  93. #define GLUT_KEY_UP            101
  94. #define GLUT_KEY_RIGHT            102
  95. #define GLUT_KEY_DOWN            103
  96. #define GLUT_KEY_PAGE_UP        104
  97. #define GLUT_KEY_PAGE_DOWN        105
  98. #define GLUT_KEY_HOME            106
  99. #define GLUT_KEY_END            107
  100. #define GLUT_KEY_INSERT            108
  101. #endif
  102.  
  103. /* entry/exit callback state */
  104. #define GLUT_LEFT            0
  105. #define GLUT_ENTERED            1
  106.  
  107. /* menu usage callback state */
  108. #define GLUT_MENU_NOT_IN_USE        0
  109. #define GLUT_MENU_IN_USE        1
  110.  
  111. /* visibility callback state */
  112. #define GLUT_NOT_VISIBLE        0
  113. #define GLUT_VISIBLE            1
  114.  
  115. /* color index component selection values */
  116. #define GLUT_RED            0
  117. #define GLUT_GREEN            1
  118. #define GLUT_BLUE            2
  119.  
  120. /* stroke font opaque addresses (use constants instead in source code) */
  121. extern void *glutStrokeRoman;
  122. extern void *glutStrokeMonoRoman;
  123.  
  124. /* stroke font constants (use these in GLUT program) */
  125. #define GLUT_STROKE_ROMAN        (&glutStrokeRoman)
  126. #define GLUT_STROKE_MONO_ROMAN        (&glutStrokeMonoRoman)
  127.  
  128. /* bitmap font opaque addresses (use constants instead in source code) */
  129. extern void *glutBitmap9By15;
  130. extern void *glutBitmap8By13;
  131. extern void *glutBitmapTimesRoman10;
  132. extern void *glutBitmapTimesRoman24;
  133.  
  134. /* bitmap font constants (use these in GLUT program) */
  135. #define GLUT_BITMAP_9_BY_15        (&glutBitmap9By15)
  136. #define GLUT_BITMAP_8_BY_13        (&glutBitmap8By13)
  137. #define GLUT_BITMAP_TIMES_ROMAN_10    (&glutBitmapTimesRoman10)
  138. #define GLUT_BITMAP_TIMES_ROMAN_24    (&glutBitmapTimesRoman24)
  139.  
  140. /* glutGet parameters */
  141. #define GLUT_WINDOW_X            100
  142. #define GLUT_WINDOW_Y            101
  143. #define GLUT_WINDOW_WIDTH        102
  144. #define GLUT_WINDOW_HEIGHT        103
  145. #define GLUT_WINDOW_BUFFER_SIZE        104
  146. #define GLUT_WINDOW_STENCIL_SIZE    105
  147. #define GLUT_WINDOW_DEPTH_SIZE        106
  148. #define GLUT_WINDOW_RED_SIZE        107
  149. #define GLUT_WINDOW_GREEN_SIZE        108
  150. #define GLUT_WINDOW_BLUE_SIZE        109
  151. #define GLUT_WINDOW_ALPHA_SIZE        110
  152. #define GLUT_WINDOW_ACCUM_RED_SIZE    111
  153. #define GLUT_WINDOW_ACCUM_GREEN_SIZE    112
  154. #define GLUT_WINDOW_ACCUM_BLUE_SIZE    113
  155. #define GLUT_WINDOW_ACCUM_ALPHA_SIZE    114
  156. #define GLUT_WINDOW_DOUBLEBUFFER    115
  157. #define GLUT_WINDOW_RGBA        116
  158. #define GLUT_WINDOW_PARENT        117
  159. #define GLUT_WINDOW_NUM_CHILDREN    118
  160. #define GLUT_WINDOW_COLORMAP_SIZE    119
  161. #if (GLUT_API_VERSION >= 2)
  162. #define GLUT_WINDOW_NUM_SAMPLES        120
  163. #define GLUT_WINDOW_STEREO        121
  164. #endif
  165. #define GLUT_SCREEN_WIDTH        200
  166. #define GLUT_SCREEN_HEIGHT        201
  167. #define GLUT_SCREEN_WIDTH_MM        202
  168. #define GLUT_SCREEN_HEIGHT_MM        203
  169. #define GLUT_MENU_NUM_ITEMS        300
  170. #define GLUT_DISPLAY_MODE_POSSIBLE    400
  171. #define GLUT_INIT_WINDOW_X        500
  172. #define GLUT_INIT_WINDOW_Y        501
  173. #define GLUT_INIT_WINDOW_WIDTH        502
  174. #define GLUT_INIT_WINDOW_HEIGHT        503
  175. #define GLUT_INIT_DISPLAY_MODE        504
  176. #if (GLUT_API_VERSION >= 2)
  177. #define GLUT_ELAPSED_TIME        700
  178. #endif
  179.  
  180. #if (GLUT_API_VERSION >= 2)
  181. /* glutDeviceGet parameters */
  182. #define GLUT_HAS_KEYBOARD        600
  183. #define GLUT_HAS_MOUSE            601
  184. #define GLUT_HAS_SPACEBALL        602
  185. #define GLUT_HAS_DIAL_AND_BUTTON_BOX    603
  186. #define GLUT_HAS_TABLET            604
  187. #define GLUT_NUM_MOUSE_BUTTONS        605
  188. #define GLUT_NUM_SPACEBALL_BUTTONS    606
  189. #define GLUT_NUM_BUTTON_BOX_BUTTONS    607
  190. #define GLUT_NUM_DIALS            608
  191. #define GLUT_NUM_TABLET_BUTTONS        609
  192. #endif
  193.  
  194. /* GLUT initialization sub-API */
  195. extern void glutInit (int *, char **);
  196. extern void glutInitDisplayMode (unsigned long);
  197. extern void glutInitWindowPosition (int, int);
  198. extern void glutInitWindowSize (int, int);
  199. extern void glutMainLoop (void);
  200.  
  201. /* GLUT window sub-api */
  202. extern int glutCreateWindow (char *);
  203. extern int glutCreateSubWindow (int, int, int, int, int);
  204. extern void glutDestroyWindow (int);
  205. extern void glutPostRedisplay (void);
  206. extern void glutSwapBuffers (void);
  207. extern int glutGetWindow (void);
  208. extern void glutSetWindow (int);
  209. extern void glutSetWindowTitle (char *);
  210. extern void glutSetIconTitle (char *);
  211. extern void glutPositionWindow (int, int);
  212. extern void glutReshapeWindow (int, int);
  213. extern void glutPopWindow (void);
  214. extern void glutPushWindow (void);
  215. extern void glutIconifyWindow (void);
  216. extern void glutShowWindow (void);
  217. extern void glutHideWindow (void);
  218.  
  219. /* GLUT menu sub-API */
  220. extern int glutCreateMenu (void (*)(int));
  221. extern void glutDestroyMenu (int);
  222. extern int glutGetMenu (void);
  223. extern void glutSetMenu (int);
  224. extern void glutAddMenuEntry (char *, int);
  225. extern void glutAddSubMenu (char *, int);
  226. extern void glutChangeToMenuEntry (int, char *, int);
  227. extern void glutChangeToSubMenu (int, char *, int);
  228. extern void glutRemoveMenuItem (int);
  229. extern void glutAttachMenu (int);
  230. extern void glutDetachMenu (int);
  231.  
  232. /* GLUT callback sub-api */
  233. extern void glutDisplayFunc (void (*)(void));
  234. extern void glutReshapeFunc (void (*)(int, int));
  235. extern void glutKeyboardFunc (void (*)(unsigned char, int, int));
  236. extern void glutMouseFunc (void (*)(int, int, int, int));
  237. extern void glutMotionFunc (void (*)(int, int));
  238. extern void glutPassiveMotionFunc (void (*)(int, int));
  239. extern void glutEntryFunc (void (*)(int));
  240. extern void glutVisibilityFunc (void (*)(int));
  241. extern void glutIdleFunc (void (*)(void));
  242. extern void glutTimerFunc (unsigned long, void (*)(int), int);
  243. extern void glutMenuStateFunc (void (*)(int));
  244. #if (GLUT_API_VERSION >= 2)
  245. extern void glutSpecialFunc (void (*)(int, int, int));
  246. extern void glutSpaceballMotionFunc (void (*)(int, int, int));
  247. extern void glutSpaceballRotateFunc (void (*)(int, int, int));
  248. extern void glutSpaceballButtonFunc (void (*)(int, int));
  249. extern void glutButtonBoxFunc (void (*)(int, int));
  250. extern void glutDialsFunc (void (*)(int, int));
  251. extern void glutTabletMotionFunc (void (*)(int, int));
  252. extern void glutTabletButtonFunc (void (*)(int, int, int, int));
  253. #endif
  254.  
  255. /* GLUT color index sub-api */
  256. extern void glutSetColor (int, GLfloat, GLfloat, GLfloat);
  257. extern GLfloat glutGetColor (int, int);
  258. extern void glutCopyColormap (int);
  259.  
  260. /* GLUT state retrieval sub-api */
  261. extern int glutGet (GLenum);
  262. extern int glutDeviceGet (GLenum);
  263.  
  264. /* GLUT font sub-API */
  265. extern void glutStrokeCharacter (void *, int);
  266. extern void glutBitmapCharacter (void *, int);
  267.  
  268. /* GLUT pre-built models sub-API */
  269. extern void glutWireSphere (GLdouble, GLint, GLint);
  270. extern void glutSolidSphere (GLdouble, GLint, GLint);
  271. extern void glutWireCone (GLdouble, GLdouble, GLint, GLint);
  272. extern void glutSolidCone (GLdouble, GLdouble, GLint, GLint);
  273. extern void glutWireCube (GLdouble);
  274. extern void glutSolidCube (GLdouble);
  275. extern void glutWireTorus (GLdouble, GLdouble, GLint, GLint);
  276. extern void glutSolidTorus (GLdouble, GLdouble, GLint, GLint);
  277. extern void glutWireDodecahedron (void);
  278. extern void glutSolidDodecahedron (void);
  279. extern void glutWireTeapot (GLdouble);
  280. extern void glutSolidTeapot (GLdouble);
  281. extern void glutWireOctahedron (void);
  282. extern void glutSolidOctahedron (void);
  283. extern void glutWireTetrahedron (void);
  284. extern void glutSolidTetrahedron (void);
  285. extern void glutWireIcosahedron (void);
  286. extern void glutSolidIcosahedron (void);
  287.  
  288. #if (GLUT_API_VERSION >= 2)
  289. /* GLUT extension support sub-API */
  290. extern int glutExtensionSupported (char *);
  291. #endif
  292.  
  293. #ifdef __cplusplus
  294. }
  295. #endif
  296.  
  297. #endif /* __glut_h__ */
  298.